home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2002 January / maximum-cd-2002-01.iso / Files / Mechwarrior 4 Mapping / MW4Editor.exe / content / ABLScripts / StockScripts / Stock_Destruction.ABL < prev    next >
Encoding:
Text File  |  2001-07-16  |  379 b   |  30 lines

  1. fsm StockDestruction : integer;        
  2.  
  3.     const
  4.         #include_ <content\ABLScripts\mwconst.abi>
  5.  
  6.     type
  7.         #include_ <content\ABLScripts\mwtype.abi>
  8.  
  9. function init;
  10.     code
  11.         SetupScoring_Destruction;
  12.  
  13.         TeamSetNav(0,ena_Nav_Center);
  14.  
  15. endfunction;
  16.  
  17. state startState;
  18.     code
  19.     revealnavpoint(ena_Nav_Center);
  20.  
  21. endstate;
  22.  
  23. state deadState;
  24.     code
  25.  
  26. endstate;
  27.     
  28. endfsm.
  29.  
  30.